home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / fly.max < prev    next >
Text File  |  1979-12-31  |  1KB  |  70 lines

  1. # The following defines a macro for the Ctrl-a key. This macro is
  2. # automatically executed at program startup.
  3.  
  4. def Ctrl a
  5.     "\eur1dnap0C\e"            # full radar data
  6.     Ctrl f                # fancy ladder
  7.     Esc o 1 s k N Esc        # show Smoke, sKy, No stall
  8.  
  9. def Ctrl f
  10.     "\eupl1cfszSr\e"        # fancy ladder
  11.  
  12. # A very basic (and fast) HUD:
  13.  
  14. def Ctrl b
  15.     Esc u t 0            # Classic HUD
  16.     Esc u 1 1 f 0 x Esc        # coarse detail
  17.     "\eur1dnapv0C\e"        # full radar data
  18.     Esc u 2 0 A Esc            # no aural alarms
  19.     Ctrl f                # fancy ladder
  20.  
  21.  
  22. # This one builds an F16 fancy HUD:
  23.  
  24. def Ctrl c
  25.     Esc u t 2            # FA16 HUD
  26.     Esc u r 1 d n a 0 C Esc        # full radar data
  27.     Ctrl f                # fancy ladder.
  28.  
  29. # This one builds an Ether HUD:
  30.  
  31. def Ctrl e
  32.     Esc w e Esc            # Ether configuration
  33.     Esc u t 4            # Ether HUD
  34.     Esc u 2 0 p Esc            # no Panel
  35.     Esc u r 1 d n a 0 C Esc        # full radar data
  36.     Ctrl f                # fancy ladder.
  37.     Esc s 0 b            # show borders (blanker off)
  38.  
  39. # set up colored ether configuration
  40.  
  41. def Ctrl y
  42.     Esc w e
  43.         b 1 n
  44.           2 d
  45.           4 G
  46.     Esc
  47.     Esc s p n - - - Esc
  48.         d + + Esc
  49.         G - - - Esc
  50.     Esc
  51.     u t 4
  52.     u 2 0 p Esc
  53.     F9 F9 F9 F9 F9 F9
  54.     u d 1 c 0 q Esc
  55.     d
  56.     u r 0 n v Esc
  57.  
  58. # Set up drones and our gun
  59.  
  60. def Ctrl z
  61.     Esc e y 5 Ent Esc        # Emit 5 drones
  62.     w r l                # Weapon=gun, Radar on, radar Locked
  63.     C k                # Chase and Kill
  64.     u 2 0 p Esc            # no panel
  65.  
  66. # Two buttons are expected on most pointer drivers.
  67.  
  68. Def Btn 0    F1            # trigger button shoots
  69. Def Btn 1    Sp            # second button reselect target
  70.